home *** CD-ROM | disk | FTP | other *** search
- from PSPApp import *
-
- def ScriptProperties():
- return {
- 'Author': u'',
- 'Copyright': u'',
- 'Description': u'',
- 'Host': u'Paint Shop Pro X',
- 'Host Version': u'10.03'
- }
-
- def Preset_Straighten():
- return {
- 'CropImage': True,
- 'GuidelineCenter': (0.332359,0.314394),
- 'GuidelineLength': 0.374675,
- 'GuidelineRotateAngle': 315,
- 'RotateAll': True,
- 'RotateMode': App.Constants.RotateMode.Auto,
- 'FillMaterial': None,
- 'ForegroundMaterial': None
- }
-
- def Do(Environment):
- # Straighten
- App.Do( Environment, 'Straighten', Preset_Straighten())
-
-